From 1e03c508912c194a0f302d39733519d1a1acd365 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Tue, 29 Dec 2015 01:46:05 -0800 Subject: [PATCH] Fix some FSFileBackend IDEA errors Change-Id: I372ad7af21f223b670498ac17ecac90918ceb2a8 --- includes/filebackend/FSFileBackend.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/includes/filebackend/FSFileBackend.php b/includes/filebackend/FSFileBackend.php index 07370ad289..f11c218f57 100644 --- a/includes/filebackend/FSFileBackend.php +++ b/includes/filebackend/FSFileBackend.php @@ -64,6 +64,7 @@ class FSFileBackend extends FileBackendStore { * - containerPaths : Map of container names to custom file system directories. * This should only be used for backwards-compatibility. * - fileMode : Octal UNIX file permissions to use on files stored. + * @param array $config */ public function __construct( array $config ) { parent::__construct( $config ); @@ -561,9 +562,6 @@ class FSFileBackend extends FileBackendStore { } } - /** - * @see FileBackendStore::doClearCache() - */ protected function doClearCache( array $paths = null ) { clearstatcache(); // clear the PHP file stat cache } @@ -682,7 +680,7 @@ class FSFileBackend extends FileBackendStore { } /** - * @param FileBackendStoreOpHandle[] $fileOpHandles + * @param FSFileOpHandle[] $fileOpHandles * * @return Status[] */ -- 2.20.1